@font-face {
  font-family: Sansation Regular;
  src: url(../fonts/Sansation_Regular.ttf)
}

@font-face {
  font-family: Sansation Italic;
  src: url(../fonts/Sansation_Italic.ttf)
}

@font-face {
  font-family: Sansation Light;
  src: url(../fonts/Sansation_Light.ttf)
}

@font-face {
  font-family: Sansation Light Italic;
  src: url(../fonts/Sansation_Light_Italic.ttf)
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  font-family: Sansation Regular!important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#app {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.store-container {
  width: 45%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.store-container .stores-header {
  width: 100%;
  height: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #eee;
  font-size: 35px;
  font-weight: bold;
}

.store-container .stores-content {
  width: 100%;
  height: 83%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.store-container .stores-content .store-products {
  width: 46%;
  max-height: 88%;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.store-container .stores-content .store-products .store-slot {
  height: 96px;
  width: 96px;
  border-radius: 3px;
  background: rgba(26, 32, 48, 0.967);
  border: 1px solid rgba(130, 126, 126, 0.658);
  overflow: hidden;
}

.store-container .stores-content .store-products .store-slot:hover {
  filter: brightness(1.05);
}


.store-container .stores-content .store-products .store-slot .store-product {
  width: 100%;
  height: 100%;
}

.store-container
  .stores-content
  .store-products
  .store-slot
  .store-product
  .store-icon {
  width: 100%;
  height: 78%;
  overflow: hidden;
}

.store-container
  .stores-content
  .store-products
  .store-slot
  .store-product
  .store-icon
  img {
  width: 100%;
  height: 120%;
}

.store-container
  .stores-content
  .store-products
  .store-slot
  .store-product
  .store-label {
  width: 100%;
  height: 50px;
  background: rgba(130, 126, 126, 0.16);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  padding: 2px 0;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  font-family: Sansation Regular, Arial, Helvetica, sans-serif
}

.store-container .stores-content .store-products::-webkit-scrollbar {
  display: none;
}

.store-container .stores-content .store-cashout {
  width: 40%;
  height: 87%;
  background: rgba(26, 32, 48, 0.967);
  border: 1px solid rgba(130, 126, 126, 0.658);
  border-radius: 4px;;
}

.store-container .stores-content .store-cashout .store-cashout-content {
  width: 100%;
  height: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: auto;
}

.btn {
  background: #262831;
}

.store-container .stores-content .store-cashout .store-cashout-content img {
  width: 150px;
  height: 150px;
}

.store-container .stores-content .store-cashout .store-cashout-content label {
  width: 85%;
  font-size: 13px;
  color: #eee;
  text-align: center;
  padding-top: 5px;
  font-weight: bold;
}

.store-container .stores-content .store-cashout .store-cashout-content p {
  width: 85%;
  font-size: 13px;
  color: #eee;
}

.store-container
  .stores-content
  .store-cashout
  .store-cashout-content::-webkit-scrollbar {
  width: 5px;
}

.store-container
  .stores-content
  .store-cashout
  .store-cashout-content::-webkit-scrollbar-track {
  display: none;
}

.store-container
  .stores-content
  .store-cashout
  .store-cashout-content::-webkit-scrollbar-thumb {
  background: #262831;
}

.store-container .stores-content .store-cashout .store-cashout-footer {
  width: 100%;
  height: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.store-container
  .stores-content
  .store-cashout
  .store-cashout-footer
  a:first-child {
  margin: 0 10px;
}
/*# sourceMappingURL=Main.css.map */
